home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980901-19981211 / 000268_news@newsmaster….columbia.edu _Wed Nov 4 17:05:44 1998.msg < prev    next >
Internet Message Format  |  1998-12-10  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA26374
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 4 Nov 1998 17:05:43 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id RAA28326
  7.     for kermit.misc@watsun; Wed, 4 Nov 1998 17:05:43 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.os.vms,comp.protocols.kermit.misc
  11. Subject: Re: I need your help... hexify me!
  12. Date: 4 Nov 1998 22:05:42 GMT
  13. Organization: Columbia University
  14. Lines: 50
  15. Message-ID: <71qj3m$aut$1@apakabar.cc.columbia.edu>
  16. References: <uvqp17.pl3.ln@rlyeh.srd.it>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.os.vms:190424 comp.protocols.kermit.misc:9474
  19.  
  20. In article <uvqp17.pl3.ln@rlyeh.srd.it>,  <cthulhu@rlyeh.srd.it> wrote:
  21. : Is there someone that would be so glad to hexify a kermit32.exe (VMS 5.3,
  22. : MicroVAX 3400) and send it to me via email?
  23. You don't need anyone to do this.  You can find it, prehexified, at:
  24.  
  25.   ftp://kermit.columbia.edu/kermit/b/vmsmit.hex
  26.  
  27. Transfer in text mode.
  28.  
  29. : Just to let you know, the working MACRO source of hexify/dehexify I've found
  30. : say, on top:
  31. : ---
  32. :     .TITLE  HEXIFY
  33. :     .SBTTL  Stuart Hecht and Eric McQueen
  34. :     .LIBRARY /SYS$LIBRARY:STARLET/
  35. :     .LIBRARY /SYS$LIBRARY:LIB/
  36. :     .IDENT  /1.1.00/
  37. : ---
  38. : You know, I'm start thinking that each version of hexify avaliable on the
  39. : net has a different output format.
  40. VMSHEX format (as produced by this program) is not a simple conversion to
  41. hex digits of the file contents.  It is a way to encode *any* VMS file
  42. at all in such a way that dehexifying it with the companion dehexifier
  43. program will restore it to its original form, RMS attributes and all.  So
  44. you can use these programs to hexify not only featureless executables, but
  45. also BACKUP savesets, indexed files, you name it.
  46.  
  47. This is similar to C-Kermit's Labeled File format and to VMS ZIP with its
  48. -V option or whatever it is, except the result is (a) printable, and (b)
  49. has short (< 80 char) records, and so can pass through the most restrictive
  50. transports, e.g. BITNET mail.
  51.  
  52. The VMSHEX and VMSDEH programs are at:
  53.  
  54.   ftp://kermit.columbia.edu/kermit/b/vmshex.*
  55.   ftp://kermit.columbia.edu/kermit/b/vmsdeh.*
  56.  
  57. Transfer in text mode.  Then:
  58.  
  59.   macro vmsdeh
  60.   link vmsdeh
  61.   run vmsdeh
  62.  
  63. and at the prompt, type "vmsmit.hex" to make it dehexify the Kermit-32
  64. executable.  Then use Kermit-32 to transfer VMS C-Kermit into your system
  65. and you're all set.
  66.  
  67. - Frank